/*
Theme Name: AI Top 20 Theme
Author: ChatGPT
Description: Un thème WordPress simple basé sur une page HTML statique avec typographie et couleurs personnalisées.
Version: 1.0
*/

body {
  background-color: #041B48;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}
header {
  background: linear-gradient(to right, #2e2e2e, #005f99);
  padding: 20px;
  text-align: center;
  color: white;
}
header h1 {
  margin: 0;
  font-size: 2em;
}
.container {
  padding: 30px;
  max-width: 1000px;
  margin: auto;
}
.card {
  background-color: #2a2f38;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.card:hover {
  transform: scale(1.01);
}
.card h2 {
  color: #00b0ff;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card h2 span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card h2 img {
  height: 32px;
  width: auto;
}
.card a {
  display: block;
  color: #00b0ff;
  margin-top: 10px;
}
.card a:hover {
  text-decoration: underline;
}
